home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / Start.p < prev    next >
Text File  |  1996-05-01  |  2KB  |  112 lines

  1. {
  2.      File:        Start.p
  3.  
  4.      Contains:    Start Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT Start;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __START__}
  28. {$SETC __START__ := 1}
  29.  
  30. {$I+}
  31. {$SETC StartIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42.  
  43. TYPE
  44.     DefStartRecPtr = ^DefStartRec;
  45.     DefStartRec = RECORD
  46.         CASE INTEGER OF
  47.         0: (
  48.             sdExtDevID:            SignedByte;
  49.             sdPartition:        SignedByte;
  50.             sdSlotNum:            SignedByte;
  51.             sdSRsrcID:            SignedByte;
  52.            );
  53.         1: (
  54.             sdReserved1:        SignedByte;
  55.             sdReserved2:        SignedByte;
  56.             sdRefNum:            INTEGER;
  57.            );
  58.     END;
  59.  
  60.     DefStartPtr                            = ^DefStartRec;
  61.     DefStartPtrPtr                         = ^DefStartPtr;
  62.     DefVideoRecPtr = ^DefVideoRec;
  63.     DefVideoRec = RECORD
  64.         sdSlot:                    SignedByte;
  65.         sdsResource:            SignedByte;
  66.     END;
  67.  
  68.     DefVideoPtr                            = ^DefVideoRec;
  69.     DefOSRecPtr = ^DefOSRec;
  70.     DefOSRec = RECORD
  71.         sdReserved:                SignedByte;
  72.         sdOSType:                SignedByte;
  73.     END;
  74.  
  75.     DefOSPtr                            = ^DefOSRec;
  76. PROCEDURE GetDefaultStartup(paramBlock: DefStartPtr);
  77.     {$IFC NOT GENERATINGCFM}
  78.     INLINE $205F, $A07D;
  79.     {$ENDC}
  80. PROCEDURE SetDefaultStartup(paramBlock: DefStartPtr);
  81.     {$IFC NOT GENERATINGCFM}
  82.     INLINE $205F, $A07E;
  83.     {$ENDC}
  84. PROCEDURE GetVideoDefault(paramBlock: DefVideoPtr);
  85.     {$IFC NOT GENERATINGCFM}
  86.     INLINE $205F, $A080;
  87.     {$ENDC}
  88. PROCEDURE SetVideoDefault(paramBlock: DefVideoPtr);
  89.     {$IFC NOT GENERATINGCFM}
  90.     INLINE $205F, $A081;
  91.     {$ENDC}
  92. PROCEDURE GetOSDefault(paramBlock: DefOSPtr);
  93.     {$IFC NOT GENERATINGCFM}
  94.     INLINE $205F, $A084;
  95.     {$ENDC}
  96. PROCEDURE SetOSDefault(paramBlock: DefOSPtr);
  97.     {$IFC NOT GENERATINGCFM}
  98.     INLINE $205F, $A083;
  99.     {$ENDC}
  100. PROCEDURE SetTimeout(count: INTEGER);
  101. PROCEDURE GetTimeout(VAR count: INTEGER);
  102. {$ALIGN RESET}
  103. {$POP}
  104.  
  105. {$SETC UsingIncludes := StartIncludes}
  106.  
  107. {$ENDC} {__START__}
  108.  
  109. {$IFC NOT UsingIncludes}
  110.  END.
  111. {$ENDC}
  112.